[−][src]Crate rustc_ap_rustc_lexer
Low-level Rust lexer.
Tokens produced by this lexer are not yet ready for parsing the Rust syntax,
for that see librustc_parse::lexer
, which converts this basic token stream
into wide tokens used by actual parser.
The purpose of this crate is to convert raw sources into a labeled sequence of well-known token types, so building an actual Rust token stream will be easier.
Main entity of this crate is TokenKind
enum which represents common
lexeme types.
Modules
unescape | Utilities for validating string and char literals and turning them into values they represent. |
Structs
Token | Parsed token. It doesn't contain information about data that has been parsed, only the type of the token and its size. |
UnvalidatedRawStr | Represents something that looks like a raw string, but may have some
problems. Use |
ValidatedRawStr | Raw String that contains a valid prefix ( |
Enums
Base | Base of numeric literal encoding according to its prefix. |
LexRawStrError | Error produced validating a raw string. Represents cases like: |
LiteralKind | |
TokenKind | Enum representing common lexeme types. |
Functions
first_token | Parses the first token from the provided input string. |
is_id_continue | True if |
is_id_start | True if |
is_whitespace | True if |
strip_shebang |
|
tokenize | Creates an iterator that produces tokens from the input string. |